home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr48 / pasclern.zip / PASCOMS.PAS < prev    next >
Pascal/Delphi Source File  |  1993-04-01  |  446b  |  16 lines

  1. PROGRAM lots_of_comments;
  2.  
  3. BEGIN { This is the start of the main program }
  4.  
  5. (* This is a comment that is ignored by the Pascal compiler *)
  6. {  This is also ignored }
  7.  
  8.   WRITELN('I am in Pascal school, Dad');      (* Comment *)
  9.   WRITELN('All students are always broke');   {Comment}
  10. (*
  11.   WRITELN('Send money');
  12.   WRITELN('Send money');
  13.     *)
  14.   WRITELN('I am really getting hungry');
  15. END. (* This is the end of the main program *)
  16.